home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-15 | 672 b | 29 lines | [TEXT/CWIE] |
- // ===========================================================================
- // BarGraphWindow.h Derived heavily from the Dashboard Starter
- // ===========================================================================
-
- #pragma once
- #include "oofBarGraph.h"
- #include "CPlotPane.h"
-
- class LCommander;
- class dbView;
-
- class BarGraphWindow {
- public:
- BarGraphWindow(LCommander*, dbView *theView, StringPtr theTitle,
- unsigned long xAxisLength=0);
- virtual ~BarGraphWindow();
-
- void DoPrinting();
-
- protected:
- LWindow* mDisplayWindow;
- CPlotPane* PlotView;
- oofBarGraph* mBarGraphPtr;
-
- public:
- static void RegisterClass();
- };
-
-